body{
    background: white;
    color:black;
    height: 100vh;
    margin:0;
    font-family: "Parkinsans", sans-serif;
}
header {
    background-color: black;
    color: white;
    padding: 10px 0;
    text-align: center;
}
  
/* nav ul {
padding: 0;
} */

nav ul li {
display: inline;
margin: 0 15px;
}

nav ul li a {
color: white;
text-decoration: none;
}

nav ul li a:hover {
text-decoration: underline;
}

main {
padding: 20px;
max-width: 1000px;
margin: 0 auto;
}

footer {
text-align: center;
padding: 5px;
background-color: black;
color: white;
position: fixed;
width: 100%;
height: 40px;
bottom: 0;
}
  
